home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
InterCD 2000 February
/
february_2000.iso
/
site building
/
GoLive 4.0 Tryout
/
data1.cab
/
Apps
/
Modules
/
JScripts
/
GlobalScripts
/
StyleVis.scpt
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1999-08-05
|
316 b
|
5 lines
function CSSetStyleVis(s,v) { if (IsIE()) CSIEStyl(s).visibility = (v == 0) ? "hidden" : "visible";
else CSNSStyl(s).visibility = (v == 0) ? 'hide' : 'show'; }
function CSGetStyleVis(s) { if (IsIE()) return (CSIEStyl(s).visibility == "hidden") ? 0 : 1;
else return (CSNSStyl(s).visibility == 'hide') ? 0 : 1;}